Socket
Socket
Sign inDemoInstall

@financial-times/ads-heavy-ad-reporting

Package Overview
Dependencies
0
Maintainers
11
Versions
30
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @financial-times/ads-heavy-ad-reporting

This package sets up an instance of the [`ReportingObserver`](https://developer.mozilla.org/en-US/docs/Web/API/ReportingObserver/ReportingObserver) class, which collects reports of type `intervention` generated by the browser.


Version published
Weekly downloads
1
decreased by-87.5%
Maintainers
11
Created
Weekly downloads
 

Readme

Source

ads-heavy-ad-reporting

This package sets up an instance of the ReportingObserver class, which collects reports of type intervention generated by the browser.

A callback is executed every time a report is created, which subsequently sends a post message - with type oAds.heavyAdIntervention - to the parent window.

Google Chrome's Heavy Ads Intervention

The Google Chrome browser generates a report whenever a heavy ad is detected, and immediately removes the third-party creative from the iframe. Unfortunately the intervention is not guaranteed.

However, because the intervention will literally remove the page from the iframe, a failsafe is added to ensure that the report is definitely captured before the page is gone completely, for example, an ad within an iframe. See also, Google's documentation What happens when an ad is removed?

Usage

/** @typedef {import("$typings/heavy-ad-reporting")} */

import { monitorHeavyAdsIntervention } from '@financial-times/ads-heavy-ad-reporting';

/**
 * Process the reports
 * @param {HeavyAdReportingT.Report[]} reports
 */
const onReportsReceived = reports => {
	for (let report of reports) {
        console.log('Report detected', report);
	}
}

monitorHeavyAdsIntervention({
	onReportsReceived
})

FAQs

Last updated on 22 May 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc